home *** CD-ROM | disk | FTP | other *** search
/ Programming in Microsoft Windows with C# / Programacion en Microsoft Windows con C#.iso / Codigo / Texto y fuentes / BoldAndItalicBigger / BoldAndItalicBigger.cs next >
Encoding:
Text File  |  2002-04-24  |  521 b   |  20 lines

  1. //--------------------------------------------------
  2. // BoldAndItalicBigger.cs ⌐ 2001 by Charles Petzold
  3. //--------------------------------------------------
  4. using System;
  5. using System.Drawing;
  6. using System.Windows.Forms;
  7.  
  8. class BoldAndItalicBigger: BoldAndItalic
  9. {
  10.      public new static void Main()
  11.      {
  12.           Application.Run(new BoldAndItalicBigger());
  13.      }
  14.      public BoldAndItalicBigger()
  15.      {
  16.           Text += " mßs grande";
  17.           Font = new Font("Times New Roman", 24);
  18.      }
  19. }
  20.